home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 009a / snpd0493.zip / ISPOW2.C < prev    next >
C/C++ Source or Header  |  1993-04-05  |  228b  |  13 lines

  1. .I 2 10
  2. int another_function(int x) { return! ((~(~0U>>1)|x)&x -1) ;}
  3.  
  4. int main(void)
  5. {
  6.       int i;
  7.  
  8.       for (i = 0; i < 256; ++i)
  9.             printf("%3d: %d\n", i, another_function(i));
  10.       return 0;
  11. }
  12. .D 3 9
  13.